38a306bf1efe333d7501f302fa7f561bb9cb9847,src/com/haskforce/highlighting/annotation/HaskellAnnotationHolder.java,HaskellAnnotationHolder,createWeakWarningAnnotation,#TextRange#String#,27
Before Change
}
public Annotation createWeakWarningAnnotation(@NotNull TextRange range, @Nullable String message) {
return holder instanceof AnnotationHolderImpl ?
createAnnotation((AnnotationHolderImpl)holder, HighlightSeverity.WEAK_WARNING, range, message)
: holder.createWeakWarningAnnotation(range, message);
}
public Annotation createWarningAnnotation(@NotNull TextRange range, @Nullable String message) {
After Change
@Nullable
public Annotation createWeakWarningAnnotation(@NotNull TextRange range, @Nullable String message) {
return createAnnotation(HighlightSeverity.WEAK_WARNING, range, message);
}
@Nullable